Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
The spark-md5 npm package is a fast and lightweight library for generating MD5 hashes in JavaScript. It is particularly useful for hashing large files or data streams in the browser or in Node.js environments.
Hashing a String
This feature allows you to generate an MD5 hash from a simple string input. It is useful for hashing small pieces of data quickly.
const SparkMD5 = require('spark-md5');
const hash = SparkMD5.hash('Hello, world!');
console.log(hash); // Outputs the MD5 hash of the string
Hashing an ArrayBuffer
This feature allows you to generate an MD5 hash from an ArrayBuffer, which is useful for hashing binary data or files.
const SparkMD5 = require('spark-md5');
const buffer = new TextEncoder().encode('Hello, world!');
const hash = SparkMD5.ArrayBuffer.hash(buffer);
console.log(hash); // Outputs the MD5 hash of the ArrayBuffer
Incremental Hashing
This feature allows you to generate an MD5 hash incrementally, which is useful for hashing large data streams or files in chunks.
const SparkMD5 = require('spark-md5');
const spark = new SparkMD5();
spark.append('Hello, ');
spark.append('world!');
const hash = spark.end();
console.log(hash); // Outputs the MD5 hash of the concatenated string
Crypto-js is a widely-used library that provides a variety of cryptographic algorithms, including MD5, SHA-1, SHA-256, and more. It is more comprehensive than spark-md5, offering a broader range of hashing and encryption functionalities.
The md5 package is a simple and straightforward library for generating MD5 hashes. It is similar to spark-md5 in terms of functionality but does not offer incremental hashing capabilities.
Hash.js is a versatile library that supports multiple hashing algorithms, including MD5, SHA-1, and SHA-256. It is more flexible than spark-md5, providing a wider range of hashing options.
SparkMD5 is a fast md5 implementation of the MD5 algorithm.
This script is based in the JKM md5 library which is the fastest algorithm around. This is most suitable for browser usage, because nodejs
version might be faster.
NOTE: Please disable Firebug while performing the test! Firebug consumes a lot of memory and CPU and slows the test by a great margin.
npm install --save spark-md5
Incremental md5 performs a lot better for hashing large amounts of data, such as files. One could read files in chunks, using the FileReader & Blob's, and append each chunk for md5 hashing while keeping memory usage low. See example below.
var hexHash = SparkMD5.hash('Hi there'); // hex hash
var rawHash = SparkMD5.hash('Hi there', true); // OR raw hash (binary string)
var spark = new SparkMD5();
spark.append('Hi');
spark.append(' there');
var hexHash = spark.end(); // hex hash
var rawHash = spark.end(true); // OR raw hash (binary string)
NOTE: If you test the code bellow using the file:// protocol in chrome you must start the browser with -allow-file-access-from-files argument. Please see: http://code.google.com/p/chromium/issues/detail?id=60889
document.getElementById('file').addEventListener('change', function () {
var blobSlice = File.prototype.slice || File.prototype.mozSlice || File.prototype.webkitSlice,
file = this.files[0],
chunkSize = 2097152, // Read in chunks of 2MB
chunks = Math.ceil(file.size / chunkSize),
currentChunk = 0,
spark = new SparkMD5.ArrayBuffer(),
fileReader = new FileReader();
fileReader.onload = function (e) {
console.log('read chunk nr', currentChunk + 1, 'of', chunks);
spark.append(e.target.result); // Append array buffer
currentChunk++;
if (currentChunk < chunks) {
loadNext();
} else {
console.log('finished loading');
console.info('computed hash', spark.end()); // Compute hash
}
};
fileReader.onerror = function () {
console.warn('oops, something went wrong.');
};
function loadNext() {
var start = currentChunk * chunkSize,
end = ((start + chunkSize) >= file.size) ? file.size : start + chunkSize;
fileReader.readAsArrayBuffer(blobSlice.call(file, start, end));
}
loadNext();
});
You can see some more examples in the test folder.
Appends a string, encoding it to UTF8 if necessary.
Appends a binary string (e.g.: string returned from the deprecated readAsBinaryString).
Finishes the computation of the md5, returning the hex result.
If raw
is true, the result as a binary string will be returned instead.
Resets the internal state of the computation.
Returns an object representing the internal computation state. You can pass this state to setState(). This feature is useful to resume an incremental md5.
Sets the internal computation state. See: getState().
Releases memory used by the incremental buffer and other additional resources.
Hashes a string directly, returning the hex result.
If raw
is true, the result as a binary string will be returned instead.
Note that this function is static
.
Hashes a binary string directly (e.g.: string returned from the deprecated readAsBinaryString), returning the hex result.
If raw
is true, the result as a binary string will be returned instead.
Note that this function is static
.
Appends an array buffer.
Finishes the computation of the md5, returning the hex result.
If raw
is true, the result as a binary string will be returned instead.
Resets the internal state of the computation.
Releases memory used by the incremental buffer and other additional resources.
Returns an object representing the internal computation state. You can pass this state to setState(). This feature is useful to resume an incremental md5.
Sets the internal computation state. See: getState().
Hashes an array buffer directly, returning the hex result.
If raw
is true, the result as a binary string will be returned instead.
Note that this function is static
.
The project is double licensed, being WTF2 the master license and MIT the alternative license. The reason to have two licenses is that some entities refuse to use the master license (WTF2) due to bad language. If that's also your case, you can choose the alternative license.
FAQs
Lightning fast normal and incremental md5 for javascript
The npm package spark-md5 receives a total of 622,968 weekly downloads. As such, spark-md5 popularity was classified as popular.
We found that spark-md5 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.